home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "
- ClientHeight = 4830
- ClientLeft = 1065
- ClientTop = 1695
- ClientWidth = 7395
- ClipControls = 0 'False
- Height = 5235
- Left = 1005
- LinkTopic = "Form1"
- ScaleHeight = 4830
- ScaleWidth = 7395
- Top = 1350
- Width = 7515
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- Begin VB.CommandButton Command1
- Caption = "
- (&X)"
- Height = 495
- Left = 5520
- TabIndex = 4
- Top = 4080
- Width = 1215
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- End
- Begin VB.FileListBox File1
- Height = 1320
- Left = 600
- Pattern = "*.bmp;*.wmf;*.ico"
- TabIndex = 2
- Top = 2400
- Width = 2895
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- End
- Begin VB.DirListBox Dir1
- Height = 1575
- Left = 600
- TabIndex = 1
- Top = 720
- Width = 2895
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- End
- Begin VB.DriveListBox Drive1
- Height = 1530
- Left = 600
- TabIndex = 0
- Top = 360
- Width = 2895
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- End
- Begin VB.Label Label1
- BorderStyle = 1 '
- Height = 495
- Left = 3720
- TabIndex = 3
- Top = 3255
- Width = 3015
- BeginProperty Font
- name = "
- size = 9
- bold = 0
- EndProperty
- End
- Begin VB.Image Open
- BorderStyle = 1 '
- Height = 2775
- Left = 3720
- Stretch = -1 'True
- Top = 360
- Width = 3015
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Unload Me
- End
- End Sub
- Private Sub Dir1_Change()
- '
- file1.Path = Dir1.Path
- End Sub
- Private Sub Drive1_Change()
- '
- ' (
- Dir1_Change
- Dir1.Path = Drive1.Drive
- End Sub
- Private Sub File1_DblClick()
- '
- C:\)
- ' Path
- (\)
- '
- '
- '
- If Right(file1.Path, 1) <> "\" Then
- label1.Caption = file1.Path & "\" & file1.filename
- Else
- label1.Caption = file1.Path & file1.filename
- End If
- '
- Form1.open.picture = LoadPicture(label1.Caption)
- End Sub
- Private Sub Form_Load()
- '
- '
- Drive1.Drive = App.Path
- Dir1.Path = App.Path
- End Sub
-